Authorizations
Secret JWT token for authenticating requests obtained from Sequence Builder - should not be exposed publicly.
Body
application/json
Response
OK
map<string,[]Chart>
curl --request POST \
  --url https://api.sequence.app/rpc/Analytics/MonthlyActiveWalletsBySegment \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "filter": {
    "projectId": 122,
    "startDate": "2024-09-30",
    "endDate": "2024-10-10"
  }
}'{
  "data": {
    "segment1": [
      {
        "value": 150,
        "label": "2024-09"
      },
      {
        "value": 180,
        "label": "2024-10"
      }
    ],
    "segment2": [
      {
        "value": 120,
        "label": "2024-09"
      },
      {
        "value": 140,
        "label": "2024-10"
      }
    ]
  }
}Get monthly active wallets by segment
curl --request POST \
  --url https://api.sequence.app/rpc/Analytics/MonthlyActiveWalletsBySegment \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "filter": {
    "projectId": 122,
    "startDate": "2024-09-30",
    "endDate": "2024-10-10"
  }
}'{
  "data": {
    "segment1": [
      {
        "value": 150,
        "label": "2024-09"
      },
      {
        "value": 180,
        "label": "2024-10"
      }
    ],
    "segment2": [
      {
        "value": 120,
        "label": "2024-09"
      },
      {
        "value": 140,
        "label": "2024-10"
      }
    ]
  }
}Secret JWT token for authenticating requests obtained from Sequence Builder - should not be exposed publicly.
Show child attributes
OK
map<string,[]Chart>
Show child attributes
Was this page helpful?